Correct variable types in phpdoc
authorTom Arrow <bomarrow1@gmail.com>
Sat, 9 Aug 2014 12:31:02 +0000 (13:31 +0100)
committerTom Arrow <bomarrow1@gmail.com>
Sat, 9 Aug 2014 12:31:02 +0000 (13:31 +0100)
Change-Id: I1a57024868fa47d9537585f1bb738d6f7c725c7a
in: LocalisationCache.php and ImageQueryPage.php

includes/cache/LocalisationCache.php
includes/specialpage/ImageQueryPage.php

index eb6a57a..c0c5977 100644 (file)
@@ -773,7 +773,7 @@ class LocalisationCache {
         *
         * Returns true if any data from the extension array was used, false
         * otherwise.
-        * @param string $codeSequence
+        * @param array $codeSequence
         * @param string $key
         * @param mixed $value
         * @param mixed $fallbackValue
index b0266cb..3ff281f 100644 (file)
@@ -36,7 +36,7 @@ abstract class ImageQueryPage extends QueryPage {
         * @param OutputPage $out OutputPage to print to
         * @param Skin $skin User skin to use [unused]
         * @param DatabaseBase $dbr (read) connection to use
-        * @param int $res Result pointer
+        * @param ResultWrapper $res Result pointer
         * @param int $num Number of available result rows
         * @param int $offset Paging offset
         */